home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / lock / locknone.c < prev    next >
Text File  |  1989-12-17  |  114b  |  16 lines

  1. /*
  2.  * Locking routines that do nothing.
  3.  */
  4.  
  5. my_lock(fd)
  6. int    fd;
  7. {
  8.     return;
  9. }
  10.  
  11. my_unlock(fd)
  12. int    fd;
  13. {
  14.     return;
  15. }
  16.